home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / CH_5.7 / EH_SEG / EH_SEG.H < prev    next >
C/C++ Source or Header  |  1999-09-11  |  900b  |  37 lines

  1. /* 
  2.  * eh_seg.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. #ifndef _EH_SEG_H_
  10. #define    _EH_SEG_H_
  11.  
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <math.h>
  15. #include <fcntl.h>
  16. #include <memory.h>
  17. #include <sys/types.h>
  18. #include <sys/stat.h>
  19. #include <string.h>
  20. #include "ip.h"
  21.  
  22. /* function prototypes */
  23. extern void usage (char *progname);
  24. #if defined(LINUX)
  25. extern int compare (float *t1, float *t2);
  26. #else
  27. extern int compare (const void *t1, const void *t2);
  28. #endif
  29. extern double find_mean (float *data, int n);
  30. extern double find_sigma (float *data, int n, double mean);
  31. extern void construct_hist (int n, float *data, float *hist, double bw, double data_base);
  32. extern int seg_size (FILE * file);
  33. extern double slp_to_angle (double m, double delx, double dely);
  34. extern void main (int argc, char *argv[]);
  35.  
  36. #endif /* _EH_SEG_H_ */
  37.